home *** CD-ROM | disk | FTP | other *** search
/ Now That's What I Call Games 3 / Now That's What I Call Games 3 - Games & Goodies (1993)(Multi Media Machine)[!][CD32-CDTV].iso / pd / bill / install < prev    next >
AmigaDOS Script File  |  1993-03-18  |  1KB  |  40 lines

  1. .key dest
  2. Echo " "
  3. Echo "This script will copy 'Solitaire Sampler' on to a new disk"
  4. if "<dest>" eq ""
  5.     echo "To use this script, please supply a destination drive/directory"
  6.     echo "that you want the program copied to, e.g. "
  7.     echo "EXECUTE INSTALL DH0/Games/' ... "
  8. else
  9.    ask "Ok to copy to <dest> (Y/N) ?"
  10.     if WARN
  11.         echo "Copying ..."
  12.         Copy "Tower Software:Solitaire Sampler" <dest>
  13.         echo "<dest>Solitaire Sampler..copied"
  14.         Copy "Tower Software:Solitaire Sampler.info" <dest>
  15.         echo "<dest>Solitaire Sampler.info..copied"
  16.         Copy "Tower Software:SolitaireFiles" <dest>SolitaireFiles
  17.         echo "The main program files have now been copied."
  18.         echo "Solitaire Sampler also requires two fonts: topaz/11 and Times/24"
  19.         ask "Do you want to copy these to 'fonts:' (Y/N) ?"
  20.         if WARN
  21.             echo "Copying ..."
  22.             copy "Tower Software:Fonts/" Fonts: all
  23.         else
  24.             echo "Fonts have not been copied!"
  25.         endif
  26.         echo "Copy operation completed!"
  27.         echo "Solitaire Sampler should now work from <dest>"
  28.         echo "BUT you must add the line "
  29.         echo "'ASSIGN Solitaire: <dest>SolitaireFiles/'"
  30.         echo "to your 's/startup-sequence' file, to use the"
  31.         echo "program all the time!"
  32.         echo " "
  33.         echo "Enjoy!"
  34.         assign Solitaire: <dest>SolitaireFiles/
  35.     else
  36.         echo "Copy operation aborted!"
  37.     endif
  38. endif
  39.  
  40.